this function has no return value, declare it as void.
authorSven Neumann <sven@gimp.org>
Tue, 15 Apr 2008 09:19:18 +0000 (09:19 +0000)
committerSven Neumann <neo@src.gnome.org>
Tue, 15 Apr 2008 09:19:18 +0000 (09:19 +0000)
2008-04-15  Sven Neumann  <sven@gimp.org>

* babl/babl-fish-path.c (init_path_instrumentation): this function
has no return value, declare it as void.

svn path=/trunk/; revision=306

ChangeLog
babl/babl-fish-path.c

index b44fedea6c48772b27a2c86c0fd82595bc878adf..d159e700bd1c54f9d7eef98214ca71d83abb0068 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-15  Sven Neumann  <sven@gimp.org>
+
+       * babl/babl-fish-path.c (init_path_instrumentation): this function
+       has no return value, declare it as void.
+
 2008-04-13  Øyvind Kolås  <pippin@gimp.org>
 
        Applied patch from Jan Heller.
index a39494baefdce0c8f8f936ebaf9d4baff0aa1f5b..1c7c752a096e46d432d40e1de4919002c622a346 100644 (file)
@@ -22,7 +22,7 @@
 #define BABL_LEGAL_ERROR    0.000001
 #define BABL_MAX_COST_VALUE 2000000
 
-static double
+static void
 init_path_instrumentation (Babl *fmt_source, 
                            Babl *fmt_destination);
 
@@ -385,7 +385,7 @@ static Babl   *fish_destination_to_rgba;
 static double reference_cost;
 static int    init_instrumentation_done = 0;
 
-static double
+static void
 init_path_instrumentation (Babl *fmt_source, 
                            Babl *fmt_destination)
 {